home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ OEM Info Text.xpl < prev    next >
Encoding:
Text File  |  1998-10-13  |  1023 b   |  49 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 3.1"
  2. "TYPE"="1"
  3. "COUNT"="5"
  4. "UIPATH"="Appearance\OEM Information"
  5. "NAME"="Support Information"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Line 1"
  8. "TEXT 2"="Line 2"
  9. "TEXT 3"="Line 3"
  10. "TEXT 4"="Line 4"
  11. "TEXT 5"="Line 5"
  12. "DESCRIPTION 1"="To see these values, select "Start" | "Settings" | "Control Panel", "System" and click the "Support Information" button."
  13. "AUTHOR"="Xteq Systems"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
  16. "COMMENT 2"="Version 1.1"
  17.  
  18.  
  19. sI="OEMINFO.INI"
  20. sI=GetWinSysDir & sI
  21.  
  22. sT="Support Information"
  23. Sub Plugin_Initialize 
  24.  for i=1 to 5 
  25.   s=IniReadValue(si,st,"Line"& i)
  26.   SetUIElement i,s
  27.  next
  28. End Sub
  29.  
  30.  
  31. Sub Plugin_CheckData(ElementIndex)
  32. End Sub
  33.  
  34.  
  35.  
  36. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  37.  for i=1 to 5 
  38.   s=GetUIElement(i) 
  39.   Call IniWriteValue(si,st,"Line" & i,s)
  40.  next
  41. End Sub
  42.  
  43.  
  44. Sub Plugin_Terminate 
  45. End Sub
  46.  
  47.  
  48.  
  49.